home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Linux LiveCD / GeeXboX 1.0 EN / geexbox-1.0-en.i386.iso / GEEXBOX / etc / init.d / 30_tvout < prev    next >
Text File  |  2006-06-21  |  676b  |  29 lines

  1. #!/bin/sh
  2. #
  3. # setup the tvout
  4. #
  5. # runlevels: geexbox, debug, install
  6.  
  7.  
  8. test -f /etc/tvout || exit 1
  9.  
  10. echo "### Setting up TV-Out ###"
  11.  
  12. . /etc/tvout
  13.  
  14. atitvout $TVOUT_STANDARD auto >/dev/null 2>&1
  15. test "`atitvout active 2>/dev/null | sed -n 's/TV.*/TV/p'`" = "TV" && echo "" > /var/tvout
  16.  
  17. # There is no possibility of tv cable autodetection with nvtv so
  18. # tvout is not enabled automatically. Uncomment the following lines
  19. # to have nvtv tvout enabled at boot.
  20. #nvtv $NVTV_ON >/dev/null 2>&1
  21. #echo "" > /var/tvout
  22.  
  23. # The same applies to S3 cards for which you need to uncomment
  24. # the following lines.
  25. #s3switch -q tv $TVOUT_STANDARD >/dev/null 2>&1
  26. #echo "" > /var/tvout
  27.  
  28. exit 0
  29.